home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
JFC.bin
/
MetalTheme.java
< prev
next >
Wrap
Text File
|
1998-06-30
|
5KB
|
103 lines
/*
* @(#)MetalTheme.java 1.11 98/03/04
*
* Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the confidential and proprietary information of Sun
* Microsystems, Inc. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Sun.
*
* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
* SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
* PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
* SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
* THIS SOFTWARE OR ITS DERIVATIVES.
*
*/
package com.sun.java.swing.plaf.metal;
import com.sun.java.swing.plaf.*;
import com.sun.java.swing.*;
/**
* This interface acts as a generic way to describe the colors
* used by Metal. Classes which implement this interface can
* be used to swap the colors in a Metal application.
*
* @version 1.11 03/04/98
* @author Steve Wilson
*/
public abstract class MetalTheme {
private static ColorUIResource white = new ColorUIResource( 255, 255, 255 );
private static ColorUIResource black = new ColorUIResource( 0, 0, 0 );
public abstract String getName();
protected abstract ColorUIResource getPrimary1(); // these are blue in Metal Default Theme
protected abstract ColorUIResource getPrimary2();
protected abstract ColorUIResource getPrimary3();
protected abstract ColorUIResource getSecondary1(); // these are gray in Metal Default Theme
protected abstract ColorUIResource getSecondary2();
protected abstract ColorUIResource getSecondary3();
public abstract FontUIResource getControlTextFont();
public abstract FontUIResource getSystemTextFont();
public abstract FontUIResource getUserTextFont();
public abstract FontUIResource getMenuTextFont();
public abstract FontUIResource getWindowTitleFont();
public abstract FontUIResource getSubTextFont();
protected ColorUIResource getWhite() { return white; }
protected ColorUIResource getBlack() { return black; }
public ColorUIResource getFocusColor() { return getPrimary2(); }
public ColorUIResource getDesktopColor() { return getPrimary2(); }
public ColorUIResource getControl() { return getSecondary3(); }
public ColorUIResource getControlShadow() { return getSecondary2(); }
public ColorUIResource getControlDarkShadow() { return getSecondary1(); }
public ColorUIResource getControlInfo() { return getBlack(); }
public ColorUIResource getControlHighlight() { return getWhite(); }
public ColorUIResource getControlDisabled() { return getSecondary2(); }
public ColorUIResource getPrimaryControl() { return getPrimary3(); }
public ColorUIResource getPrimaryControlShadow() { return getPrimary2(); }
public ColorUIResource getPrimaryControlDarkShadow() { return getPrimary1(); }
public ColorUIResource getPrimaryControlInfo() { return getBlack(); }
public ColorUIResource getPrimaryControlHighlight() { return getWhite(); }
public ColorUIResource getSystemTextColor() { return getPrimary1(); }
public ColorUIResource getControlTextColor() { return getControlInfo(); }
public ColorUIResource getInactiveControlTextColor() { return getControlDisabled(); }
public ColorUIResource getInactiveSystemTextColor() { return getSecondary2(); }
public ColorUIResource getUserTextColor() { return getBlack(); }
public ColorUIResource getTextHighlightColor() { return getPrimary3(); }
public ColorUIResource getHighlightedTextColor() { return getControlTextColor(); }
public ColorUIResource getWindowBackground() { return getWhite(); }
public ColorUIResource getWindowTitleBackground() { return getPrimary3(); }
public ColorUIResource getWindowTitleForeground() { return getBlack(); }
public ColorUIResource getWindowTitleInactiveBackground() { return getSecondary3(); }
public ColorUIResource getWindowTitleInactiveForeground() { return getBlack(); }
public ColorUIResource getMenuBackground() { return getSecondary3(); }
public ColorUIResource getMenuForeground() { return getBlack(); }
public ColorUIResource getMenuSelectedBackground() { return getPrimary2(); }
public ColorUIResource getMenuSelectedForeground() { return getBlack(); }
public ColorUIResource getMenuDisabledForeground() { return getSecondary2(); }
public ColorUIResource getSeparatorBackground() { return getWhite(); }
public ColorUIResource getSeparatorForeground() { return getPrimary1(); }
public ColorUIResource getAcceleratorForeground() { return getPrimary1(); }
public ColorUIResource getAcceleratorSelectedForeground() { return getBlack(); }
public void addCustomEntriesToTable(UIDefaults table) {}
}